home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / adg_4_6.zip / SPIN.H < prev    next >
Text File  |  1991-02-21  |  723b  |  22 lines

  1. /****************************************************************************
  2. Module name: Spin.H
  3. Programmer : Jeffrey M. Richter.
  4. *****************************************************************************/
  5.  
  6. // Spin Button doesn't send WM_CTLCOLOR message to parent window.
  7.  
  8.  
  9. // Spin Button's class-specific window styles.
  10. #define SPNS_WRAP          0x0001L
  11.  
  12.  
  13. // Spin Button's class-specific window messages.
  14. #define SPNM_SETRANGE      (WM_USER + 0)
  15. #define SPNM_GETRANGE      (WM_USER + 1)
  16. #define SPNM_SETCRNTVALUE  (WM_USER + 2)
  17. #define SPNM_GETCRNTVALUE  (WM_USER + 3)
  18.  
  19. // Spin Button's notification codes sent in HIWORD of lParam 
  20. // during a WM_COMMAND message.
  21. #define SPNN_VALUECHANGE   (1)
  22.